/* ============================================================
   HEREN VAN HOUTEN — Stylesheet
   Palette: #1a1a1a | #c8a84b (goud) | #2c2c2c | #fff | #8b1a1a
   Fonts:   Playfair Display (headings) | Inter (body)
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #1a1a1a;
  --bg-alt:      #2c2c2c;
  --gold:        #c8a84b;
  --gold-dark:   #a8882e;
  --gold-light:  #e0c068;
  --red:         #8b1a1a;
  --white:       #ffffff;
  --grey:        #a0a0a0;
  --grey-light:  #d4d4d4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:       68px;
  --max-w:       1160px;
  --radius:      6px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* IMAGE FILL UTILITY */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.over-ons__img, .drinks-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--bg-alt); }

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { color: var(--gold); margin-bottom: 1rem; }
.section-intro { color: var(--grey-light); max-width: 600px; margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 12px rgba(200,168,75,0.25);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.4);
  outline: none;
}
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; margin-top: 1rem; }

/* ============================================================
   STICKY NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(20,20,20,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  margin-right: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: none; }

@media (min-width: 768px) {
  .nav-cta { display: inline-flex; }
}

/* ============================================================
   MOBILE MENU (FULLSCREEN OVERLAY)
   ============================================================ */
.mobile-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(200,168,75,0.4);
  border-radius: var(--radius);
  color: var(--gold);
  padding: 0.4rem;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  transition: border-color var(--transition);
  margin-left: auto;
}
.mobile-menu__trigger:hover { border-color: var(--gold); }
@media (min-width: 1024px) { .mobile-menu__trigger { display: none; } }

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  height: 100svh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: opacity 0.2s ease; transform: none; }
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: auto;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-menu__item--cta {
  color: var(--gold);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-family: var(--font-body);
  font-weight: 700;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  border-bottom: 1.5px solid var(--gold);
}
.mobile-menu__item--cta:hover { background: var(--gold); color: var(--bg); padding-left: 1.5rem; }

.mobile-menu__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,12,8,0.55) 0%,
    rgba(15,12,8,0.35) 40%,
    rgba(15,12,8,0.75) 80%,
    rgba(15,12,8,0.90) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 820px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__title {
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   OVER ONS
   ============================================================ */
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .over-ons__grid { grid-template-columns: 1fr 1fr; }
}
.over-ons__text h2 { margin-bottom: 1.25rem; }
.over-ons__lead {
  font-size: 1.1rem;
  color: var(--grey-light);
  margin-bottom: 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.over-ons__text p { color: var(--grey-light); margin-bottom: 2rem; }

.over-ons__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-alt);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.4;
}
.badge svg { color: var(--gold); flex-shrink: 0; }
.badge span { font-weight: 500; }

.over-ons__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}
.over-ons__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.over-ons__img-wrap:hover .over-ons__img { transform: scale(1.04); }

.over-ons__img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(20,20,20,0.9);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  text-align: center;
}
.img-badge__line1 { display: block; font-family: var(--font-display); color: var(--gold); font-size: 1rem; font-weight: 700; }
.img-badge__line2 { display: block; font-family: var(--font-display); color: var(--white); font-size: 0.9rem; }
.img-badge__line3 { display: block; font-size: 0.7rem; color: var(--grey); margin-top: 0.2rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(200,168,75,0.2);
}
.menu-tab {
  background: transparent;
  border: none;
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.menu-tab:hover { color: var(--gold-light); }
.menu-tab--active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel--hidden { display: none; }
.menu-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
}
.menu-hours svg { color: var(--gold); }

.menu-sub-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.menu-item__info p { font-size: 0.8rem; color: var(--grey); }
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item--featured { background: rgba(200,168,75,0.05); padding: 1.1rem 0.75rem; border-radius: var(--radius); border-bottom: none; border: 1px solid rgba(200,168,75,0.15); margin-bottom: 1px; }
.menu-item--featured .menu-item__info h4 { color: var(--gold-light); }

.tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200,168,75,0.15);
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 3px;
  padding: 0.15rem 0.4rem;
}

/* ============================================================
   BIER & WIJN
   ============================================================ */
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .drinks-grid { grid-template-columns: 1fr 1fr; }
}

.drinks-card {
  background: var(--bg-alt);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.drinks-card:hover { border-color: rgba(200,168,75,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }

.drinks-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}
.drinks-card__icon { color: var(--gold); }
.drinks-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

.drinks-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 160px;
  margin: 1.25rem 0 0;
  overflow: hidden;
}
.drinks-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drinks-card__divider {
  height: 140px;
  margin: 1.25rem 0 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a0a0a 100%);
  border-top: 1px solid rgba(200,168,75,0.1);
  border-bottom: 1px solid rgba(200,168,75,0.1);
}

.drinks-list {
  padding: 1.25rem 1.5rem 1.5rem;
}
.drinks-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drinks-list li:last-child { border-bottom: none; }
.drinks-list__sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: none !important;
  padding-top: 1rem !important;
}
.drink-name { font-size: 0.9rem; color: var(--grey-light); }
.drink-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* ============================================================
   EVENEMENTEN
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .event-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .event-grid { grid-template-columns: 1fr 1fr 1fr; } }

.event-card {
  background: var(--bg);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  border-color: rgba(200,168,75,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.event-card--featured {
  border-color: rgba(200,168,75,0.4);
  background: linear-gradient(135deg, rgba(200,168,75,0.06) 0%, var(--bg) 100%);
}

.event-card__icon { color: var(--gold); }
.event-card__body { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.event-card__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-card__title { font-size: 1.3rem; color: var(--white); }
.event-card__desc { font-size: 0.88rem; color: var(--grey-light); line-height: 1.6; flex: 1; }
.event-card__time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--grey);
}
.event-card__time svg { color: var(--gold); flex-shrink: 0; }
.event-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #1a0d00 0%, var(--bg-alt) 50%, #1a0d00 100%);
  border-top: 1px solid rgba(200,168,75,0.25);
  border-bottom: 1px solid rgba(200,168,75,0.25);
  padding: 4rem 0;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-band__text h2 { color: var(--gold); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.cta-band__text p { color: var(--grey-light); font-size: 1rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr 1fr; } }

.contact-block {
  background: var(--bg-alt);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 8px;
  padding: 2rem 1.75rem;
}
.contact-block__icon {
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-block h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-block address p { color: var(--grey-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}
.hours-table td:last-child { text-align: right; white-space: nowrap; font-weight: 500; color: var(--white); }

.contact-link {
  display: block;
  color: var(--grey-light);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-link--phone {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-kit {
  background: #111111;
  border-top: 1px solid rgba(200,168,75,0.2);
  padding: 4rem 0 2rem;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-kit__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-kit__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-kit__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-kit__brand p:not(.footer-kit__logo) { font-size: 0.85rem; color: var(--grey); line-height: 1.7; }

.footer-kit__nav h4,
.footer-kit__contact h4,
.footer-kit__hours h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-kit__nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-kit__nav a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-kit__nav a:hover { color: var(--gold); }

.footer-kit__contact p,
.footer-kit__contact a { font-size: 0.88rem; color: var(--grey); line-height: 1.8; display: block; }
.footer-kit__contact a:hover { color: var(--gold); }

.footer-kit__hours p { font-size: 0.88rem; color: var(--grey); line-height: 1.8; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--grey);
}
.footer-kit__credit a { color: var(--gold); }
.footer-kit__credit a:hover { text-decoration: underline; }

/* ============================================================
   FADE-IN (safe -- elements always visible by default)
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.55s ease both;
}

/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-tabs { overflow-x: auto; }
  .menu-item { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .menu-item__price { font-size: 0.95rem; }
  .cta-band__inner { gap: 2rem; }
}
@media (min-width: 1024px) {
  .mobile-menu__trigger { display: none; }
}

/* SR-only helper */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
