/* Los Xurros — styles
   Palette: cream #EBDCC6 · ink #1E1B18 · teal #14807F · orange #E0442A · pink #E0328A · red #D2233C · yellow #F7D65A */

:root {
  --cream: #EBDCC6;
  --cream-light: #F4EADB;
  --paper: #FFFDF8;
  --ink: #1E1B18;
  --ink-soft: #3A342E;
  --ink-muted: #5B5147;
  --tan: #A08A6C;
  --tan-light: #B7A98F;
  --tan-pale: #D9CDB9;
  --border-input: #C8B79B;
  --teal: #14807F;
  --teal-dark: #0F6664;
  --teal-link: #146E70;
  --teal-light: #4FC0C2;
  --orange: #E0442A;
  --pink: #E0328A;
  --red: #D2233C;
  --yellow: #F7D65A;
  --yellow-light: #FFE07A;
  --font-display: Oswald, "Arial Narrow", Impact, sans-serif;
  --font-body: Barlow, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: Caveat, "Segoe Script", cursive;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-link); text-decoration: none; }
a:hover { color: var(--orange); }
::selection { background: var(--pink); color: #fff; }
h1, h2, h3 { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.page {
  overflow-x: clip;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 60% 22% at 18% 6%, rgba(255,253,246,.9), transparent 70%),
    radial-gradient(ellipse 55% 18% at 88% 30%, rgba(151,109,63,.16), transparent 70%),
    radial-gradient(ellipse 70% 16% at 45% 55%, rgba(255,253,246,.7), transparent 70%),
    radial-gradient(ellipse 55% 18% at 10% 74%, rgba(151,109,63,.14), transparent 70%),
    radial-gradient(ellipse 60% 20% at 90% 95%, rgba(120,86,50,.13), transparent 70%),
    repeating-linear-gradient(64deg, rgba(120,86,50,.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-27deg, rgba(120,86,50,.04) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(8deg, rgba(255,255,255,.3) 0 1px, transparent 1px 4px);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, repeat;
}

.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- type helpers ---------- */
.handwritten { font-family: var(--font-hand); font-weight: 700; font-size: 28px; line-height: 1.1; }
.accent-orange { color: var(--orange); }
.accent-teal { color: var(--teal); }
.accent-yellow { color: var(--yellow); }
.accent-yellow-light { color: var(--yellow-light); }
.muted { color: var(--ink-muted); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 46px);
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-title--lg { font-size: clamp(38px, 5.4vw, 50px); line-height: 1; margin: 8px 0 20px; }
.section-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }
.section-head .handwritten { font-size: 27px; }
.section-head__cta { margin-left: auto; }
.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn--sm { font-size: 13px; padding: 13px 24px; }
.btn--teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.btn--dark { background: var(--ink); color: var(--cream-light); border-color: var(--ink); }
.btn--dark:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn--outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: var(--cream-light); }
.btn--white { background: #fff; color: var(--teal); border-color: #fff; }
.btn--white:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--ink); color: var(--cream-light); }
.site-header__inner { padding-top: 10px; padding-bottom: 10px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream-light); }
.brand:hover { color: var(--cream-light); }
.brand__logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand__name { font-family: var(--font-display); font-weight: 700; letter-spacing: .18em; font-size: 15px; text-transform: uppercase; }

.site-nav {
  margin-left: auto;
  display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center;
  gap: 10px 20px;
  font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
}
.site-nav a { color: var(--cream-light); }
.site-nav a:hover { color: var(--teal-light); }
.site-nav__ig, .site-nav a.site-nav__ig { background: var(--pink); color: #fff; padding: 9px 16px; border-radius: 999px; }
.site-nav a.site-nav__ig:hover { background: var(--orange); color: #fff; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--cream-light); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 20px;
    border-top: 1px solid rgba(244,234,219,.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(244,234,219,.1); font-size: 15px; }
  .site-nav a.site-nav__ig { margin-top: 14px; text-align: center; border-bottom: 0; padding: 12px 16px; }
}

/* ---------- hero ---------- */
.hero {
  padding-top: 64px; padding-bottom: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 48px; align-items: center;
}
.hero__logo { width: 172px; height: 172px; border-radius: 50%; object-fit: cover; mix-blend-mode: multiply; }
.stamp {
  display: inline-block; margin: 22px 0 0;
  background: var(--ink); color: var(--cream-light);
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
  padding: 9px 18px; transform: rotate(-1.2deg);
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(54px, 9vw, 76px); line-height: .92; letter-spacing: -.01em; text-transform: uppercase;
  margin-top: 20px;
}
.hero__lede { font-size: 19px; line-height: 1.55; max-width: 46ch; margin: 20px 0 0; color: var(--ink-soft); text-wrap: pretty; }

.hero__art { position: relative; margin: 24px 18px 30px; }
.hero__photo { aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(60,40,20,.22); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.badge {
  position: absolute; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-hand); font-weight: 700; line-height: 1.05;
}
.badge--dark { top: -22px; right: -14px; width: 128px; height: 128px; background: var(--ink); color: var(--yellow); font-size: 26px; transform: rotate(-9deg); }
.badge--pink { bottom: -26px; left: -26px; width: 132px; height: 132px; background: var(--pink); color: #fff; font-size: 24px; line-height: 1.1; transform: rotate(7deg); }
@media (max-width: 480px) {
  .hero { padding-top: 40px; }
  .hero__logo { width: 132px; height: 132px; }
  .badge--dark { width: 104px; height: 104px; font-size: 21px; top: -16px; right: -8px; }
  .badge--pink { width: 108px; height: 108px; font-size: 19px; bottom: -18px; left: -10px; }
}

/* ---------- menu ---------- */
.menu { padding-top: 56px; padding-bottom: 24px; }
.menu-card {
  border: 2px solid var(--teal); border-radius: 14px;
  padding: 28px 32px; margin-bottom: 22px;
  background: rgba(255,255,255,.28);
  display: grid; grid-template-columns: 108px 1fr; gap: 8px;
}
.menu-card--teal { border-color: var(--teal); --card-accent: var(--teal); }
.menu-card--red { border-color: var(--red); --card-accent: var(--red); }
.menu-card--orange { border-color: var(--orange); --card-accent: var(--orange); }
.menu-card__digit { font-family: var(--font-display); font-weight: 700; font-size: 58px; line-height: 1; color: var(--card-accent); }
.menu-card__swash { width: 54px; height: 8px; border-radius: 4px; background: var(--card-accent); margin-top: 6px; transform: rotate(-3deg); }
.menu-card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 36px); text-transform: uppercase; margin: 4px 0 18px; }
.menu-card__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 4px 0 22px; }
.menu-card__head .menu-card__title { margin: 0; }
.menu-card__sub { font-size: 18px; color: var(--ink-muted); }
.menu-card__body--split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 28px; align-items: center; }
.menu-card__platter { width: 100%; }
.menu-card__body--split .btn { margin-top: 20px; }

.price-pill {
  margin-left: auto; background: var(--card-accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  padding: 6px 20px; border-radius: 999px;
}
.price-line {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2.6vw, 25px);
}
.price-line__dots { flex: 1; min-width: 24px; border-bottom: 3px dotted var(--tan); transform: translateY(-6px); }
.price-line__price { color: var(--card-accent, var(--teal)); font-weight: 700; }
.price-line--hours { font-size: 21px; }
.price-line--hours .price-line__dots { transform: translateY(-5px); }
.price-note { margin: 4px 0 20px; color: var(--ink-muted); font-size: 17px; }
.price-note--last { margin-bottom: 0; }
.price-note--wide { margin: 12px 0 0; max-width: 44ch; }

.item-grid { display: grid; gap: 26px 20px; }
.item-grid li { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.item-grid li span { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; line-height: 1.1; }
.item-grid li small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 14px; text-transform: none; color: var(--ink-muted); }
.item-grid--sauces { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.item-grid--sauces img { width: 100%; max-width: 190px; height: 112px; object-fit: contain; object-position: center bottom; }
.item-grid--cups { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.item-grid--cups img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; object-position: center bottom; }
.item-grid--cups li span { margin-top: 2px; }
@media (max-width: 520px) {
  .item-grid--sauces { grid-template-columns: repeat(2, 1fr); }
  .item-grid--cups { grid-template-columns: repeat(3, 1fr); }
  .item-grid li span { font-size: 17px; }
}

.tag-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.tag {
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; color: #fff;
}
.tag--teal { background: var(--teal); }
.tag--dark { background: var(--ink); color: var(--cream-light); }
.tag--pink { background: var(--pink); }

@media (max-width: 640px) {
  .menu-card { grid-template-columns: 1fr; padding: 22px 20px; gap: 14px; }
  .menu-card__num { display: flex; align-items: center; gap: 14px; }
  .menu-card__digit { font-size: 44px; }
  .menu-card__swash { margin-top: 0; }
  .price-pill { font-size: 22px; padding: 4px 16px; }
}

/* ---------- about ---------- */
.about { background: var(--ink); color: var(--cream-light); margin-top: 64px; }
.about__inner {
  padding-top: 72px; padding-bottom: 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 52px; align-items: center;
}
.about__figure { margin: 0; }
.about__photo { aspect-ratio: 3 / 4; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 44px rgba(0,0,0,.4); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__caption { margin-top: 12px; font-size: 22px; color: var(--tan-light); font-weight: 600; }
.about__text { font-size: 19px; line-height: 1.6; color: var(--tan-pale); max-width: 52ch; margin: 0; text-wrap: pretty; }
.about__text + .about__text { margin-top: 16px; }

/* ---------- visit ---------- */
.visit { padding-top: 76px; padding-bottom: 20px; }
.visit .section-title { margin-bottom: 30px; }
.visit__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 32px; align-items: start; }
.card { border: 2px solid var(--ink); border-radius: 14px; padding: 28px 30px; background: rgba(255,255,255,.3); }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 30px; text-transform: uppercase; margin: 8px 0 6px; }
.card__text { font-size: 19px; line-height: 1.5; margin: 0 0 18px; color: var(--ink-soft); }
.card__link { display: inline-block; margin-top: 14px; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
.map { position: relative; display: block; aspect-ratio: 16 / 11; border-radius: 10px; overflow: hidden; border: 2px solid var(--ink); }
.map__img { width: 100%; height: 100%; object-fit: cover; object-position: 34% 42%; }
.map__pin {
  position: absolute; left: 34%; top: 42%; width: 52px; height: 52px; border-radius: 50%;
  transform: translate(-50%, -50%); border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.4); object-fit: cover;
}
.hours { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.hours-notice { margin: 12px 0 0; padding: 10px 14px; border-radius: 8px; background: var(--yellow); color: var(--ink); font-weight: 600; font-size: 16px; }
.hours-notice[hidden] { display: none; }
.hours-footnote { margin: 18px 0 0; padding-top: 14px; border-top: 2px dotted var(--tan); font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.hours__note { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--ink-muted); }
@media (max-width: 480px) { .card { padding: 22px 20px; } }

/* ---------- catering ---------- */
.catering { padding-top: 60px; padding-bottom: 76px; }
.catering__panel {
  border-radius: 18px; background: var(--teal); color: #fff; padding: 48px 44px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 40px; align-items: center;
}
.catering__text { font-size: 19px; line-height: 1.6; max-width: 48ch; color: #E4F3F2; margin: 0; text-wrap: pretty; }
.catering__panel .btn-row { margin-top: 26px; }
.catering__photo { aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 36px rgba(0,0,0,.28); }
.catering__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 600px) { .catering__panel { padding: 32px 22px; } }

/* ---------- social ---------- */
.social { background: var(--pink); color: #fff; }
.social .container { padding-top: 62px; padding-bottom: 62px; }
.social .section-title { font-size: clamp(34px, 5vw, 44px); }
.social .section-head { margin-bottom: 26px; }
.social .btn--dark { color: #fff; }
.social .btn--dark:hover { background: #fff; border-color: #fff; color: var(--pink); }
.social__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.social__tile {
  aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; display: block;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.24) 0 10px, rgba(255,255,255,.1) 10px 20px);
}
.social__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.social__tile--platter img { object-fit: contain; padding: 8%; }
.social__tile:hover img { transform: scale(1.04); }
@media (max-width: 480px) { .social__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ---------- contact ---------- */
.contact { padding-top: 76px; padding-bottom: 76px; }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 48px; align-items: start; }
.contact .section-title { line-height: 1; margin: 8px 0 18px; }
.contact__text { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 40ch; margin: 0; text-wrap: pretty; }
.contact__links { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; font-size: 18px; }
.card--form { border-radius: 16px; padding: 30px 30px 32px; background: rgba(255,255,255,.34); }

.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field__optional { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--tan); }
.field__label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 17px;
  padding: 13px 14px;
  border: 2px solid var(--border-input); border-radius: 10px;
  background: var(--paper); color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red); }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn { margin-top: 4px; justify-self: start; }
.contact-form .btn[disabled] { opacity: .6; cursor: wait; }
.form-error { margin: 0; color: var(--red); font-weight: 500; }
.form-success { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 26px 0 18px; text-align: center; }
.form-success[hidden] { display: none; }
.form-success__title { font-family: var(--font-display); font-weight: 700; font-size: 30px; text-transform: uppercase; }
.form-success__text { font-size: 18px; color: var(--ink-soft); margin: 0; }
.form-success .btn { margin-top: 10px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--tan-light); }
.site-footer__inner { padding-top: 42px; padding-bottom: 42px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; font-size: 15px; }
.site-footer__logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.site-footer__brand { font-family: var(--font-display); letter-spacing: .18em; text-transform: uppercase; font-size: 13px; color: var(--cream-light); }
.site-footer__addr { margin-left: auto; }
.site-footer a { color: var(--tan-light); }
.site-footer a:hover { color: var(--cream-light); }
@media (max-width: 600px) { .site-footer__addr { margin-left: 0; flex-basis: 100%; } }

.serving-note {
  margin: -8px 0 18px;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--teal);
}

.social__feed { border-radius: 12px; overflow: hidden; min-height: 200px; }

.catering__facts {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  margin-top: 22px; padding-top: 20px;
  border-top: 2px dotted rgba(255,255,255,.45);
}
.catering__facts li { display: flex; flex-direction: column; gap: 2px; min-width: 120px; }
.catering__facts strong { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; text-transform: uppercase; color: var(--yellow); }
.catering__facts span { font-size: 15px; color: #E4F3F2; }

/* ---------- reviews ---------- */
.reviews { padding-top: 8px; padding-bottom: 56px; }
.reviews[hidden] { display: none; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream-light);
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px;
}
.reviews__badge:hover { background: var(--teal); color: #fff; }
.reviews__stars { color: var(--yellow); letter-spacing: .1em; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px; margin-bottom: 22px; }
.review-card { border: 2px solid var(--ink); border-radius: 14px; padding: 22px 24px; background: rgba(255,255,255,.3); display: flex; flex-direction: column; gap: 10px; }
.review-card__stars { color: var(--orange); font-size: 18px; letter-spacing: .12em; }
.review-card__text { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.review-card__meta { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }

.reviews__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.reviews__badge--yelp { background: #D32323; color: #fff; }
.reviews__badge--yelp:hover { background: #A61C1C; color: #fff; }
